home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Developer Essentials / DTS Sample Code / Macintosh Sample Code / SC.021.ModalList / ModalList.make < prev    next >
Encoding:
Text File  |  1989-09-30  |  1.4 KB  |  48 lines  |  [TEXT/MPS ]

  1. #
  2. #
  3. #    Apple Macintosh Developer Technical Support
  4. #
  5. #    ModalList : Simple Modal Dialog and List Manager Sample Application
  6. #
  7. #    ModalList.c
  8. #
  9. #    Copyright © 1989 Apple Computer, Inc.
  10. #    All rights reserved.
  11. #
  12. #    Versions:    
  13. #            1.00                     10/89
  14. #
  15. #    Components:
  16. #            ModalList.make            October 1, 1989
  17. #            ModalList.h                October 1, 1989
  18. #            ModalList.c                October 1, 1989
  19. #            ModalList.r                October 1, 1989
  20. #
  21. #    ModalList is an example application that demonstrates
  22. #    how to use the Dialog Manager and List Manager routines
  23. #    together. It is not a good example of a sample application
  24. #    but a great example of the use of lists in a dialog. The
  25. #    default LDEF is used to display a 2 dimensional list of strings.
  26. #    Each cell's string is initialized to represent it's position in the
  27. #    list. The user can change these strings and search for a particular
  28. #    setting. Once again this is not meant as an example application and
  29. #    there are some features that are documented in the source listing
  30. #    that you should pay close attention to inorder to understand how
  31. #    this example works.
  32. #
  33. #
  34.  
  35. CObjs            =    ModalList.c.o ∂
  36.                     "{CLibraries}"CRuntime.o ∂
  37.                     "{CLibraries}"CInterface.o ∂
  38.                     "{Libraries}"Interface.o
  39.  
  40. ModalList        ƒƒ    {CObjs} ModalList.make
  41.                     Link -o {Targ} {CObjs}
  42.                     SetFile {Targ} -t APPL -c '????' -a B
  43.  
  44. ModalList        ƒƒ    ModalList.r ModalList.h ModalList.make
  45.                     Rez -rd -o {Targ} ModalList.r -append
  46.  
  47. ModalList.c.o    ƒƒ    ModalList.make
  48.